Git 入门

安装Git

Linux

  • Linux用户可以在命令行输入git测试Git的安装
  • 一般Linux自带git的,如果没有安装,则运行下列命令
1
2
sudo apt-get update
sudo apt-get install git-all

Windows

  • 前往https://git-scm.com/download/win下载64-bit Git for Windows Setup
  • 下载后运行安装程序
  • 点击一次Next后,勾选Additional Icons并点击Next
  • 选择Noptepad++并点击Next
  • 选择Git from the command line and also from 3rd-party software并点击Next
  • 选择Use the native Windows Secure Channel library并点击Next
  • 选择Checkout Windows-style, commit Unix-style line endings并点击Next
  • 选择Use MinTTY并点击Next
  • 勾选Enable file system cachingEnable Git Credential Manager并点击Next
  • 点击Install开始安装
  • 完成安装后运行Git Bash
  • 执行下列命令
1
2
git config --global user.email "<Your Email Address>"
git config --global user.name "<Your Name>"
  • 替换上面尖括号里面的内容为你自己的信息
  • 之后的Git命令就可以在Git Bash里面执行了